home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
cbibcode.arc
/
SLEEP.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-08-05
|
212 b
|
11 lines
/* SLEEP.C --- p. 673 */
#include <dos.h>
main()
{
unsigned duration;
printf("Enter duration of 440-Hz tone (in seconds); ");
scanf(" %u", &duration);
sound(440);
sleep(duration);
nosound();
}